home *** CD-ROM | disk | FTP | other *** search
- '
- ' Search / Replace Add-on for Visio
- '
- ' The meat of this Add-on is in the frmSearchReplace form
- ' in the Form_Load, cmdOk_Click, and General_DoSearch
- ' subroutines.
- '
- ' Copyright (c) 1993 by Dennis K. Fitzgerald
- '
- '
- ' Global Visio object pointers
- '
- Global appVisio As object 'Visio Application
- Global doc As object 'Current document
- Global PageList As object 'Page List
- Global CurPage As object 'Single Page
- '
- Global CurWin As object 'Current Visio Window
- Global SelList As object 'Selection List
- '
- Global ShapeList As object 'List of shapes
- Global CurShape As object 'Single Visio shape
- Global CurCell As object 'Single ShapeSheet Cell
- '
- ' Global variables
- '
- Global ScopeSelection 'Scope Selection Index
- ' 0 = Selection
- ' 1 = Current Page
- ' 2 = All pages
- Global FindMode 'Response to Confirmation Form
- Global Const srSkip = 0 ' 0 = skip
- Global Const srDoOne = 1 ' 1 = Do current one
- Global Const srDoAll = 2 ' 2 = Do all w/o confirm
- '
- Global CurSize As Variant 'Text Font Size
-
-